Skip to content

Fix PVS Case List columns: target repeater Control1 instead of Content area#8

Draft
Copilot wants to merge 2 commits into
mainfrom
copilot/update-pvs-case-list-page
Draft

Fix PVS Case List columns: target repeater Control1 instead of Content area#8
Copilot wants to merge 2 commits into
mainfrom
copilot/update-pvs-case-list-page

Conversation

Copilot AI commented Jun 18, 2026

Copy link
Copy Markdown

addlast(Content) appends after the repeater at the page-area level, so the fields never render as list columns. The repeater in PVS Case List is named Control1; targeting it directly makes the fields appear as expected.

Changes

  • PVSCase.TableExt.al — Adds two FlowFields to PVS Case:

    • Quoted Price — sums PVS Job."Quoted Price" filtered by Active = true, Status = Quote
    • Ordered Price — sums PVS Job."Quoted Price" filtered by Active = true, Status = Order
  • PVSCaseList.PageExt.al — Exposes both fields as list columns via addlast(Control1):

pageextension 50101 "PVS Case List Ext. Pricing" extends "PVS Case List"
{
    layout
    {
        addlast(Control1)   // was: addlast(Content) — wrong target
        {
            field("Quoted Price"; Rec."Quoted Price") { ... }
            field("Ordered Price"; Rec."Ordered Price") { ... }
        }
    }
}
Original prompt

The Quoted Price and Ordered Price fields were added to the PVS Case List page using addlast(content). However, these fields are not appearing, likely because the 'content' control might not be the correct container for adding columns in the list. Update the page extension to add these fields into the appropriate repeater or layout group for the list columns so they become visible.

Copilot AI changed the title [WIP] Update PVS Case List page to display quoted and ordered price fields Fix PVS Case List columns: target repeater Control1 instead of Content area Jun 18, 2026
Copilot AI requested a review from basprintvis June 18, 2026 15:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants